Newer
Older
taehui / qwilight-fe / src / app / [language] / hof / loading.tsx
@Taehui Taehui on 16 Mar 204 bytes 2024-03-17 오전 2:07
import LoadingLayer from "@/LoadingLayer";
import { useTranslations } from "next-intl";

export default function Loading() {
  const t = useTranslations();

  return <LoadingLayer text={t("toHOF")} />;
}